JMGetCurrentJRIEnv
Returns the currentJRIEnv
data structure.
struct JRIEnv* JMGetCurrentJRIEnv (JMSessionRef session);
session
- The current session.
- function result
- A pointer to the
JRIEnv
data structure.DISCUSSION
TheJMGetCurrentJRIEnv
function allows you to obtain the current Java Runtime Interface (JRI) structure. Once you have theJRIEnv
structure, you can call JRI functions. The data structureJRIEnv
is defined in the header fileJRI.h
.
You can find documentation for the Java Runtime Interface at the Web site
- Note
- Unless you have a particular reason to access the Java Runtime Interface, you should access the Java Native Interface, which provides similar functionality, instead.
![]()
http://developer.netscape.com/